home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / mint / netlib / include / signal.h < prev    next >
C/C++ Source or Header  |  1994-12-27  |  285b  |  15 lines

  1. /*
  2.  *    Signal related definitions.
  3.  *
  4.  *    11/12/93, kay roemer
  5.  */
  6.  
  7. #ifndef _SIGNAL_H
  8. #define _SIGNAL_H
  9.  
  10. #define SIGPIPE        13    /* broken socket connection */    
  11. #define SIGURG        16    /* urgent condition on IO channel */
  12. #define SIGIO        23    /* IO possible */
  13.  
  14. #endif /* _SIGNAL_H */
  15.